/* NAVBAR STYLING */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	color: rgba(255, 138, 23, 1);
	border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}

/* BUSINESS NAME (logo-title) */
.logo-title {
	padding:10px;
    z-index: 1001;
    text-align: center;
}

a {
    text-decoration: none;
}

.logo-title-text {
	font-size: 34px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 138, 23, 1);
	margin-bottom:0px;
}

.logo-slogan1 {
	font-size: 20px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 138, 23, 0.85);
	position: center;
}

.logo-slogan2 {
	font-size: 20px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 88, 0, 1);
	position:center;
}

/* LINK STYLING */
.nav-links a {
	color: rgba(255, 138, 23, 1);
	text-decoration: none;
	font-weight: bold;
}

.nav-links a:hover {
    color: rgba(255, 88, 0, 1); /* Change color to white on hover */
}

/*NAVBAR MENU*/
.menu {
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-grow: 1;
    height: 100%;
    z-index: 1001;
    position: relative; /* Or use transform: translateY(0); */
    top: 0;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
}

/* NAVBAR MENU HOVER STYLING */
.menu li:hover {
	
	transition: 0.3s ease;
    transform: translateY(-7px);
}

.menu li {
	padding: 5px 14px;
}

.dropdown-item {
    position: relative;
    display: inline-block; /* To align horizontally with other list items */
    padding: 5px 14px; /* Match the padding of other .menu li items */
}

.dropdown-item:hover {
     /* Match the hover background of other .menu li items */
    border-radius: 5px;
    transition: 0.3s ease;
}

.dropbtn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
    /* The padding for the dropbtn is handled by the .dropdown-item's padding */
    /* Remove padding here if it's already on .dropdown-item */
    display: block; /* Make the whole area clickable within the padding */
    background-color: transparent; /* Ensure no default button background */
    border: none; /* Ensure no default button border */
    cursor: pointer; /* Show pointer on hover */
    outline: none; /* Remove focus outline */
}

.dropdown-content {
    display: none;
    position: absolute;
	color: rgba(255, 138, 23, 1);
    font-weight: 300;
    font-style: normal;
	border-radius: 15px;
    width: 150px;
    z-index: 1;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    background-color: #fff;
    border: 1px solid rgba(255, 138, 23, 1);
    

}

.dropdown-content a {
    color: rgba(255, 138, 23, 1);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-weight: bold;
	gap:18px;
	font-size: 20px;
    
}

.dropdown-content a:hover {
    
	color: rgba(255, 88, 0, 1);
	border-radius: 5px;
	transition: 0.3s ease;
}
.dropdown-item:hover .dropdown-content {
    display: block;
}

.scroll-left {
    height: 50px;	
    overflow: hidden; /* Hides content that overflows the box */
    position: relative; /* Needed for absolute positioning of child <p> */
     /* Consider changing this color to match your site's theme */
    color: rgba(255, 138, 23, 1); /* Consider changing this color to match your site's theme */
    border: 1px solid orange; /* Consider changing this color to match your site's theme */
    width: 100%; /* Ensure it spans the full width available */
    box-sizing: border-box; /* Include padding/border in the width calculation */
    margin: 20px 0; /* Add some margin above/below the banner */
    padding: 0 10px;
	/* Optional: small horizontal padding */
}

.scroll-left p {
    position: absolute; /* Allows positioning relative to its parent .scroll-left */
    width: 100%;
    height: 100%;
    margin: 0; /* Remove default paragraph margins */
    line-height: 50px; /* Vertically centers text if height is 50px */
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:24px;
    
    /* Starting position */
    transform: translateX(100%);
    /* Apply animation to this element */
    animation: scroll-left 18s linear infinite;

    /* Optional: Inherit your theme's font, e.g. */
    /* font-family: 'Audiowide', cursive; */ 
    /* font-size: 20px; */
}

/* Define the animation (the actual movement) */
@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Starts off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* Moves to off-screen to the left */
    }
}

.page-title-container{
    text-align: center;
    
}

.title {
	font-family: 'Audiowide', cursive;
    font-weight: bold;
	color: rgba(255, 138, 23, 1);
	font-size:30px;
	margin:20px;
	
}

.title-description{
    text-align: center;
    margin-bottom: 30px;
    color: #555;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
    width: 70%;
    margin: 0 auto;
}

.search-container {
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
}

.search-box {
    width: 20%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 25px;
    transition: width 0.3s ease-in-out;
    text-align: center;
}

.search-box:focus {
    width: 30%;
    outline: none;
    border-color: rgba(255, 138, 23, 1);
}

.options-container{
	padding:10px;
	display:flex;
    justify-content: center; /* Centers items horizontally within the container */
    align-items: flex-start; /* Aligns items to the start of the cross-axis (top) */
    gap: 40px;
	flex-wrap:wrap;
	
	
}

.option-card{
	border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	width:250px;
	height:270px;
	padding: 5px;
	    position: relative; /* Or use transform: translateY(0); */
    top: 0;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
	
}

.option-card:hover {
  /* Move the box up by 10 pixels */
  transform: translateY(-20px);

  /* Optional: Enhance the shadow for a more "lifted" look */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.article-title{
	font-family: 'Audiowide', cursive;
    font-weight: bold;
	font-size: 20px;
	color:rgba(255, 138, 23, 1);
	margin-bottom:0px;
	padding-left: 5px;
	padding-right:5px
	
}

a {
    text-decoration: none; /* Removes the blue underline */
    color: inherit; /* Makes link text inherit color from parent by default */
}



.article-text{
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:18px;
	color: #5F595D;
	padding-left:5px;
	padding-right:5px;
    overflow-wrap: break-word;
	
}







.logo-footer {
    width: 25%;
    height: auto;
    /* You might want to adjust max-width if the logo gets too big on large screens */
    max-width: 250px; /* Example: set a max-width */
}

hr.rounded {
    border-top: 3px solid rgba(255, 138, 23, 1);
    border-radius: 5px;
    width: 75%; /* This will be relative to its flex container */
    margin: 0; /* Remove default margins */
}

.footer-divider {
    display: flex;
    /* Change to column to stack the logo/divider/links vertically initially */
    flex-direction: row; /* Keep it row for logo and the new container */
    align-items: flex-start; /* Align items to the start of the cross axis */
    gap: 20px;
    padding: 20px;
    width: 90%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
}

.divider-and-links-container {
    display: flex;
    flex-direction: column; /* Stack HR and Nav vertically */
    flex-grow: 1; /* Allow this container to take up remaining space */
    align-items: flex-start; /* Align children (hr and nav) to the start */
    gap: 10px; /* Space between the HR and the links */
}




.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 960px; /* Or adjust to fit your design */
    margin: 0; /* Remove auto margin as it's now a child of a flex item */
    padding: 10px; /* Adjust padding here if needed */
    /* If you want the black background only around the links: */
    /* background-color: black; */
    /* padding: 10px 20px; */
}


.footer-links a {
    color: rgba(255, 138, 23, 1);
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.footer-links a:hover {
    color: rgba(255, 88, 0, 1);
}

.contact-icon{
    width: 40px;
    height: auto;
    filter: invert(45%) sepia(97%) saturate(790%) hue-rotate(352deg) brightness(100%) contrast(100%);
    align-items: center;
    transition: filter 0.3s ease;
    }
.contact-icon:hover{
    filter: invert(53%) sepia(91%) saturate(2304%) hue-rotate(342deg) brightness(101%) contrast(105%);
     
}


/*Boring stuff*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

main {
    margin-top: 50px;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 20px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px;
        border-radius: 0;
    }
    .logo-title {
        text-align: center;
        width: 100%;
        padding: 5px 0;
    }
    .menu {
        flex-direction: column;
        width: 100%;
        gap: 5px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 138, 23, 0.5);
    }
    .menu li {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    .dropdown-item {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    .dropdown-content {
        position: static;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    .dropdown-content a {
        padding: 10px 0;
    }

    .logo-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 35%;
    }

    .title-overlay {
        font-size: clamp(2rem, 8vw, 40px);
        top: 60%;
        left: 50%;
        text-align: center;
        width: 90%;
    }
    .intro-text-overlay {
        font-size: clamp(0.9rem, 3vw, 16px);
        top: 75%;
        left: 50%;
        text-align: center;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: clamp(16px, 6vw, 24px);
    }
    .nav-links a, .dropbtn {
        font-size: clamp(12px, 3.5vw, 16px);
    }
}
 